home *** CD-ROM | disk | FTP | other *** search
/ The Original Shareware 1.1 / The Original Shareware (WeMake CDs)(Volume 1.1)(CDs, Inc)(1993).iso / 16 / fpc225_3.zip / F-PCHELP.ZIP / TOPEDIT.HLP < prev    next >
Text File  |  1988-01-17  |  2KB  |  43 lines

  1. \ TOPEDIT.SEQ   Memory edit.                            By Tom Zimmer
  2.  
  3.   Memory edit, allows reentering the editor without having to re-read
  4. the edit file from disk. This results in a much faster turn around time
  5. for development.  Changes made during an edit will still be saved at
  6. the end of each edit session.
  7.  
  8. memfile         ( --- handle )
  9.         Return the handle address of the current file in editor memory.
  10.  
  11. ?readfile       ( --- )
  12.         Load the currently open file into the editor if it is not already
  13.         loaded. Initialize the editor.
  14.  
  15. cold-edinit     ( --- )
  16.         Initialize the editor to no file open. Done at cold start time.
  17.  
  18. <ed>            ( --- )
  19.         Re-Enter the editor on the current file at the most recent
  20.         edit line. Reads the file into memory if needed.
  21.  
  22. ed              ( --- )
  23.         Enter the editor on the most recent edit line. See also EDITOR
  24.  
  25. edit            ( n1 --- )
  26.         Enter the editor on the current file at line n1. See also EDITOR
  27.  
  28. fix             ( t1 --- )
  29.         Open the source file for the word t1, and enter the editor
  30.         on the first line of its definition. See also EDITOR
  31.  
  32. sed             ( | filename --- )
  33.         Start the editor on the filename specified, or if no name
  34.         is specified, then prompt for a file. Will create a file
  35.         if it does not already exist. See also EDITOR
  36.  
  37. listing         ( --- )
  38.         Print a formatted listing of the file currently open.  The
  39.         printing is done using the editor, so there must be enough
  40.         memory to load the editor.
  41.  
  42.  
  43.